home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / gfx / 3d / irit50src.lha / irit5 / include / geomvals.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-22  |  695 b   |  23 lines

  1. /******************************************************************************
  2. * GeomVals.h - Area, Volume, and counts on polygonal objects.              *
  3. *******************************************************************************
  4. * Written by Gershon Elber, March 1990.                          *
  5. ******************************************************************************/
  6.  
  7. #ifndef GEOM_VAL_GH
  8. #define GEOM_VAL_GH
  9.  
  10. #if defined(__cplusplus) || defined(c_plusplus)
  11. extern "C" {
  12. #endif
  13.  
  14. double PolyObjectArea(IPObjectStruct *PObj);
  15. double PolyObjectVolume(IPObjectStruct *PObj);
  16. double PolyCountPolys(IPObjectStruct *PObj);
  17.  
  18. #if defined(__cplusplus) || defined(c_plusplus)
  19. }
  20. #endif
  21.  
  22. #endif /* GEOM_VAL_GH */
  23.